/* Web Development Section */
.web-development {
    background-color: #e8f0fe;
    padding: 50px 20px;
    text-align: center;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    margin: 40px auto;
    max-width: 1200px;
    animation: fadeIn 1.5s ease-in-out;
  }
  
  .web-development .web-header {
    margin-bottom: 30px;
  }
  
  .web-development h2 {
    font-size: 36px;
    color: #333;
    margin-bottom: 15px;
    font-weight: 600;
    animation: slideIn 1s ease-out;
  }
  
  .web-development p {
    font-size: 18px;
    color: #666;
    animation: fadeInText 1.5s ease-in-out;
  }
  
  .web-development .web-info {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    margin-bottom: 40px;
  }
  
  .web-development .web-card {
    background-color: #fff;
    border-radius: 12px;
    padding: 30px;
    width: 30%;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    opacity: 0;
    transform: translateY(50px);
    animation: cardIn 1s forwards;
  }
  
  .web-development .web-card:nth-child(1) {
    animation-delay: 0.2s;
  }
  
  .web-development .web-card:nth-child(2) {
    animation-delay: 0.4s;
  }
  
  .web-development .web-card:nth-child(3) {
    animation-delay: 0.6s;
  }
  
  .web-development .web-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
  }
  
  .web-development .web-card h3 {
    font-size: 22px;
    color: #007bff;
    margin-bottom: 15px;
    font-weight: 500;
  }
  
  .web-development .web-card p {
    color: #555;
  }
  
  .web-development .cta-button {
    background-color: #007bff;
    color: #fff;
    padding: 15px 30px;
    font-size: 18px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    margin-top: 30px;
  }
  
  .web-development .cta-button:hover {
    background-color: #0056b3;
  }
  
  /* Animations */
  @keyframes slideIn {
    from {
      transform: translateY(-20px);
      opacity: 0;
    }
    to {
      transform: translateY(0);
      opacity: 1;
    }
  }
  
  @keyframes fadeInText {
    from {
      opacity: 0;
    }
    to {
      opacity: 1;
    }
  }
  
  @keyframes cardIn {
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  /* Responsive Design */
  @media (max-width: 768px) {
    .web-development .web-info {
      flex-direction: column;
      align-items: center;
    }
  
    .web-development .web-card {
      width: 80%;
      margin-bottom: 20px;
    }
  }
  